home *** CD-ROM | disk | FTP | other *** search
/ Experimental BBS Explossion 3 / Experimental BBS Explossion III.iso / graphics / flick_12.zip / SMAKEFIL < prev   
Text File  |  1994-02-18  |  2KB  |  84 lines

  1. COMMONFLAGS = parm=reg math=ieee verbose \
  2.           utilitylibrary stringmerge gst=t:includes.gst define=__USE_SYSBASE
  3.  
  4. SCFLAGS = optimize opttime nodebug nostackcheck $(COMMONFLAGS)
  5.  
  6. #SCFLAGS = nooptimize debug=full $(COMMONFLAGS)
  7.  
  8. OBJS =    flick.o median.o \
  9.     c2p_8.o c2p_6.o c2p_4.o \
  10.     c2p320x200x8.o \
  11.     c2p320x200x6.o \
  12.     c2p_8_040.o c2p_6_040.o c2p_4_040.o \
  13.     c2p320x200x8_040.o \
  14.     c2p320x200x6_040.o \
  15.     c2p_8_cmp.o c2p_6_cmp.o c2p_4_cmp.o \
  16.     c2p320x200x8_cmp.o \
  17.     c2p320x200x6_cmp.o
  18.  
  19. flick: $(OBJS)
  20.     slink <with <
  21. from lib:c.o $(OBJS) \
  22. to flick \
  23. lib lib:scmieee.lib lib:sc.lib lib:amiga.lib \
  24. smallcode smalldata \
  25. define __CXM33=__UCXM33 \
  26. define __CXD33=__UCXD33 \
  27. define __CXM22=__UCXM22 \
  28. define __CXD22=__UCXD22
  29. <
  30.  
  31. flick.o: flick.c t:includes.gst
  32.     sc $(SCFLAGS) flick.c
  33.  
  34. median.o: median.c t:includes.gst
  35.     sc $(SCFLAGS) median.c
  36.  
  37. c2p_8.o: adaptive.s smakefile
  38.     macro68 -D "generic,depth=8" adaptive.s -o c2p_8.o
  39.  
  40. c2p_6.o: adaptive.s smakefile
  41.     macro68 -D "generic,depth=6" adaptive.s -o c2p_6.o
  42.  
  43. c2p_4.o: adaptive.s smakefile
  44.     macro68 -D "generic,depth=4" adaptive.s -o c2p_4.o
  45.  
  46. c2p320x200x8.o: adaptive.s smakefile
  47.     macro68 -D "width=320,height=200,depth=8" adaptive.s -o c2p320x200x8.o
  48.  
  49. c2p320x200x6.o: adaptive.s smakefile
  50.     macro68 -D "width=320,height=200,depth=6" adaptive.s -o c2p320x200x6.o
  51.  
  52. c2p_8_040.o: chunky8.s smakefile
  53.     macro68 -D "generic,depth=8" chunky8.s -o c2p_8_040.o
  54.  
  55. c2p_6_040.o: chunky8.s smakefile
  56.     macro68 -D "generic,depth=6" chunky8.s -o c2p_6_040.o
  57.  
  58. c2p_4_040.o: chunky8.s smakefile
  59.     macro68 -D "generic,depth=4" chunky8.s -o c2p_4_040.o
  60.  
  61. c2p320x200x8_040.o: chunky8.s smakefile
  62.     macro68 -D "width=320,height=200,depth=8" chunky8.s -o c2p320x200x8_040.o
  63.  
  64. c2p320x200x6_040.o: chunky8.s smakefile
  65.     macro68 -D "width=320,height=200,depth=6" chunky8.s -o c2p320x200x6_040.o
  66.  
  67. c2p_8_cmp.o: c2p_cmp.s smakefile
  68.     macro68 -D "generic,depth=8" c2p_cmp.s -o c2p_8_cmp.o
  69.  
  70. c2p_6_cmp.o: c2p_cmp.s smakefile
  71.     macro68 -D "generic,depth=6" c2p_cmp.s -o c2p_6_cmp.o
  72.  
  73. c2p_4_cmp.o: c2p_cmp.s smakefile
  74.     macro68 -D "generic,depth=4" c2p_cmp.s -o c2p_4_cmp.o
  75.  
  76. c2p320x200x8_cmp.o: c2p_cmp.s smakefile
  77.     macro68 -D "width=320,height=200,depth=8" c2p_cmp.s -o c2p320x200x8_cmp.o
  78.  
  79. c2p320x200x6_cmp.o: c2p_cmp.s smakefile
  80.     macro68 -D "width=320,height=200,depth=6" c2p_cmp.s -o c2p320x200x6_cmp.o
  81.  
  82. t:includes.gst: includes.h smakefile
  83.     sc $(SCFLAGS) makegst=t:includes.gst includes.h
  84.